body {
    margin: 0;
    font-family: Akt, sans-serif;
    background: #0b0f1a;
    color: white;

    display: flex;
    flex-direction: column;

    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
}

.navbar nav {
    display: flex;
    gap: 20px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.navbar nav a:hover {
    opacity: 1;
    color: #4da3ff;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #4da3ff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #2f7de0;
    transform: translateY(-2px);
}

.footer {
    text-align: center;
    padding: 20px;
    background: #05070f;
}

.footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    background: #05070f;
    font-size: 12px;
    opacity: 0.6;
}